home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / boot / scsiDiskBoot / RCS / end.s,v < prev    next >
Encoding:
Text File  |  1989-06-08  |  569 b   |  41 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @| @;
  7.  
  8.  
  9. 1.1
  10. date     89.01.06.08.11.36;  author brent;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @Last assembly instructions for a boot program
  17. @
  18.  
  19.  
  20.  
  21. 1.1
  22. log
  23. @Initial revision
  24. @
  25. text
  26. @|
  27. | end.s
  28. |    This sets up some well known addresses used at boot time initialization.|    By putting end.o at the end of the load command we get the loader
  29. |    to tell us how big things are.
  30. |
  31.     .text
  32.     .globl _endText
  33. _endText:
  34.     .data
  35.     .globl _endData
  36. _endData:    .word     0
  37.     .bss
  38.     .globl _endBss
  39. _endBss:    .word     0
  40. @
  41.